home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CPOPUPME / CPOPUPDE.H2 < prev    next >
Text File  |  1989-08-19  |  432b  |  25 lines

  1. /*****
  2.  * CPopupDemoApp.h
  3.  *
  4.  *    Application class for a typical application.
  5.  *
  6.  *****/
  7.  
  8. #define    _H_CPopupDemoApp        /* Include this file only once */
  9. #include <CApplication.h>
  10.  
  11. struct CPopupDemoApp : CApplication {
  12.  
  13.     /* No instance variables */
  14.  
  15.     void    IPopupDemoApp(void);
  16.     void    SetUpFileParameters(void);
  17.  
  18.     void    DoCommand(long theCommand);
  19.  
  20.     void    Exit(void);
  21.  
  22.     void    CreateDocument(void);
  23.     void    OpenDocument(SFReply *macSFReply);
  24. };
  25.